home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / os2 / lynxos26.zip / LYNX.CFG < prev    next >
Text File  |  1996-07-20  |  27KB  |  638 lines

  1. # lynx.cfg file.
  2. # The default placement for this file is in the $ETC directory.
  3. #
  4. # Definition pairs are of the form  VARIABLE:DEFINITION
  5. # NO spaces are allowed between the pair items.
  6. #
  7. # If you like, you may specify it's location on the command line
  8. # with the "-cfg" command line option.
  9. #
  10. # Items may be commented out by putting a '#' as the FIRST char of the line
  11. #
  12. # All definitions must be flush left and have NO spaces.!!!
  13. #
  14. #
  15. # STARTFILE is the default URL if none is specified on the command line 
  16. # note: these files can be remote (http://www.w3.org/default.html) 
  17. # or local (file://localhost/DIRECTORY/FILENAME
  18. # replace DIRECTORY with the current directory path and
  19. # FILENAME with the name of the file.
  20. #
  21. # STARTFILE:http://www.cc.ukans.edu/about_lynx/www_start.html
  22. # STARTFILE:file:///e:/webpage/djd/index.html
  23. STARTFILE:http://www.cris.com/~djd/
  24. #
  25. # HELPFILE must be defined as a URL and must have a 
  26. # complete local path name if local 
  27. # (file://localhost/DIRECTORY/FILENAME
  28. # replace DIRECTORY with the current directory path and
  29. # FILENAME with the name of the file.
  30. # the default HELPFILE is:
  31. # http://kufacts.cc.ukans.edu/lynx_help/lynx_help_main.html
  32. # This file will be updated as needed.
  33. #
  34. #HELPFILE:http://kufacts.cc.ukans.edu/lynx_help/lynx_help_main.html
  35. HELPFILE:file://localhost/f:/lynx/help/lynx_hel.htm
  36. #
  37. # JUMPFILE is the local file checked for shortcut URL's when the
  38. # user presses the 'J' (JUMP) key.  The user will be prompted for
  39. # a shortcut entry (analogously to 'g'oto), and can enter one
  40. # or use '?' for a list of the shortcuts with associated links to
  41. # their actual URL's.  See the sample jumps files in the samples
  42. # subdirectory.  Make sure your jumps file includes a '?' shortcut
  43. # for a file://localhost URL to itself:
  44. #
  45. # <dt>?<dd><a href="file://localhost/path/jumps.html">This Shortcut List</a>
  46. #
  47. # If not defined here, the JUMP command will invoke
  48. # the NO_JUMPFILE statusline message (see userdefs.h).
  49. #
  50. # Do not include "file://localhost" in the definition.
  51. #
  52. #JUMPFILE:/Lynx_Dir/jumps.html
  53. # DEFAULT_INDEX_FILE is the default file retrieved when the
  54. # user presses the 'I' key when viewing any document.
  55. # An index to your CWIS can be placed here or a document containing
  56. # pointers to lots of interesting places on the web.
  57. #
  58. #DEFAULT_INDEX_FILE:http://www.w3.org/default.html
  59. DEFAULT_INDEX_FILE:http://www.ncsa.uiuc.edu/SDG/Software/Mosaic/MetaIndex.html
  60. # The CHARACTER_SET defines the users default 8 bit character set
  61. # which is used to represent the list of character entities within
  62. # HTML. 
  63. #
  64. # The default character sets include:
  65. #    ISO Latin 1
  66. #    DEC Multinational
  67. #    IBM PC character set
  68. #    NeXT character set
  69. #    7 bit approximations
  70. #
  71. CHARACTER_SET:IBM PC character set
  72. # If BOLD_HEADERS is set to TRUE the HT_BOLD default style will be
  73. # acted upon for <H1> through <H7> headers.  The  default
  74. # is FALSE (only the uppercasing and indentation styles are acted
  75. # upon).  
  76. #
  77. BOLD_HEADERS:FALSE
  78. #
  79. # Local execution links and scripts are completely disabled
  80. # in the source code unless they are enabled in the
  81. # userdefs.h file and the sources recompiled.  Please
  82. # see the Lynx source code distribution and the userdefs.h
  83. # file for more detail on enabling execution links and scripts.
  84. #
  85. # If you have enabled execution links or scripts the following
  86. # two variables control Lynx's action when an execution link
  87. # or script is encountered.
  88. #
  89. # If LOCAL_EXECUTION_LINKS_ALWAYS_ON is set to TRUE any execution
  90. # link or script will be executed no matter where it came from.
  91. # This is EXTREMELY dangerous.  Since Lynx can access files from
  92. # anywhere in the world, you may encounter links or scripts that
  93. # will cause damage or comprimise the security of your system.
  94. #
  95. # If LOCAL_EXECUTION_LINKS_ON_BUT_NOT_REMOTE is set to TRUE only
  96. # links or scripts that reside on the local machine and are
  97. # referenced with a URL beginning with "file://localhost/" or via
  98. # TRUSTED_EXEC rules (see below) will be executed.  This is much
  99. # less dangerous than enabling all execution links, but can still
  100. # be dangerous.
  101. #
  102. LOCAL_EXECUTION_LINKS_ALWAYS_ON:FALSE
  103. LOCAL_EXECUTION_LINKS_ON_BUT_NOT_REMOTE:FALSE
  104. # If LOCAL_EXECUTION_LINK_ON_BUT_NOT_REMOTE is TRUE, and no TRUSTED_EXEC
  105. # rule is defined, it defaults to "file://localhost/" and any lynxexec
  106. # command will be permitted if it was referenced with a URL beginning with
  107. # that string.  If you wish to restrict the referencing URL's further, you
  108. # can extend the string to include a trusted path.  You also can specify
  109. # a trusted directory for http URL's, which will then be treated as if they
  110. # were local rather than remote.  For example:
  111. #
  112. #    TRUSTED_EXEC:file://localhost/trusted/
  113. #    TRUSTED_EXEC:http://sci.wfeb.edu/trusted/
  114. #
  115. # If you also wish to restrict the commands which can be executed, create
  116. # a series of rules with the path (Unix) or command name (VMS) following
  117. # the string, separated by a tab.  For example:
  118. #
  119. # Unix:
  120. #    TRUSTED_EXEC:file://localhost/    bin/cp
  121. #    TRUSTED_EXEC:file://localhost/    bin/rm
  122. # VMS:
  123. #    TRUSTED_EXEC:file://localhost/    copy
  124. #    TRUSTED_EXEC:file://localhost/    delete
  125. #
  126. # Once you specify a TRUSTED_EXEC referencing string, the default is
  127. # replaced, and all the referencing strings you desire must be specified
  128. # as a series.  Similarly, if you associate a command with the referencing
  129. # string, you must specify all of the allowable commands as a series of
  130. # TRUSTED_EXEC rules for that string.
  131. #
  132. # If EXEC_LINKS and JUMPFILE have been defined, any lynxexec URL's in that
  133. # file will be permitted, regardless of other settings.  If you also set
  134. # LOCAL_EXECUTION_LINKS_ON_BUT_NOT_REMOTE:TRUE and a single TRUSTED_EXEC
  135. # rule that will always fail (e.g., "none"), then *ONLY* the lynxexec URL's
  136. # in JUMPFILE will be allowed.
  137. #
  138. #TRUSTED_EXEC:none
  139.  
  140. #  MAIL_SYSTEM_ERROR_LOGGING will send a message to the owner of 
  141. #  the information, or ALERTMAIL if there is no owner, every time
  142. #  that a document cannot be accessed!
  143. #
  144. #  NOTE: This can generate A LOT of mail, be warned.
  145. #
  146. MAIL_SYSTEM_ERROR_LOGGING:FALSE
  147.  
  148. # If CHECKMAIL is set to TRUE, the user will be informed (via a statusline
  149. # message) about the existence of any unread mail at startup of Lynx, and
  150. # will get statusline messages if subsequent new mail arrives.  If a jumps
  151. # file with a lynxexec URL for invoking mail is available, or your html
  152. # pages include an mail launch file URL, the user thereby can access mail
  153. # and read the messages.  The checks and statusline reports will not be
  154. # performed if Lynx has been invoked with the -restrictions=mail switch.
  155. CHECKMAIL:FALSE
  156. #
  157. # Set INEWS to the full path and name of your program for posting to
  158. # newsgroups.  A "mini" inews is included in the utils subdirectory of
  159. # the Lynx distribution.  You can disable news posting by setting INEWS
  160. # to "none", or via -restrictions switches.
  161. # Note that INN may require an -h switch added to the path.
  162. #
  163. #INEWS:inews
  164. #
  165. # VI_KEYS can be turned on by the user in the options
  166. # screen or the .lynxrc file.  This is just the default.
  167. #
  168. VI_KEYS_ALWAYS_ON:FALSE
  169. # EMACS_KEYS can be turned on by the user in the options
  170. # screen or the .lynxrc file.  This is just the default.
  171. #
  172. EMACS_KEYS_ALWAYS_ON:FALSE
  173. # DEFAULT_KEYPAD_MODE specifies whether by default the user
  174. # has numbers that work like arrows or else numbered links
  175. # DEFAULT KEYPAD MODE may be set to TRUE for
  176. # using numbers as arrows as default or FALSE for
  177. # using numbered links as the default
  178. DEFAULT_KEYPAD_MODE_IS_NUMBERS_AS_ARROWS:TRUE
  179. # The default search type.
  180. # This is a default that can be overridden by the user!
  181. #
  182. CASE_SENSITIVE_ALWAYS_ON:FALSE
  183. #
  184. # DEFAULT_BOOKMARK_FILE is a default filename for use as a
  185. # personal bookmark file.  It should start without a slash
  186. # and will reference a file from the users home directory.
  187. # NOTE: A file ending in .htm should be used eliminate potential problems
  188. #
  189. DEFAULT_BOOKMARK_FILE:Bookmark.htm
  190.  
  191. # DEFAULT_USER_MODE sets the default user mode for Lynx